projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f58e89
)
(save-match-data): Fix typo in previous change.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 30 Aug 1996 03:05:22 +0000
(
03:05
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 30 Aug 1996 03:05:22 +0000
(
03:05
+0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index b2ce0d73125ea1d8520cce1d230f418edac9b948..fb4901711cc041b6e64eda461194af520f191b8f 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-748,7
+748,7
@@
Wildcards and redirection are handled as usual in the shell."
;; now, but it generates slower code.
(defmacro save-match-data (&rest body)
"Execute the BODY forms, restoring the global value of the match data."
- `(let ((save-match-data-internal
'
(match-data)))
+ `(let ((save-match-data-internal (match-data)))
(unwind-protect
(progn ,@body)
(store-match-data save-match-data-internal))))